docs: don't use a table for the region docs
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Fri, 7 Feb 2014 23:25:42 +0000 (18:25 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Sat, 8 Feb 2014 01:53:00 +0000 (20:53 -0500)
gtk/gtkstylecontext.c

index 0ad153aea8b438d1af62e968842b4ba88dd8f7f8..6901d602e46467a6fd3992ac2f880f11b506af16 100644 (file)
  * Theme engines can also use style classes to vary their rendering.
  *
  * Widgets can also add regions with flags to their context.
+ *
  * The regions used by GTK+ widgets are:
- * <informaltable>
- *   <tgroup cols="4">
- *     <thead>
- *       <row>
- *         <entry>Region</entry>
- *         <entry>Flags</entry>
- *         <entry>Macro</entry>
- *         <entry>Used by</entry>
- *       </row>
- *     </thead>
- *     <tbody>
- *       <row>
- *         <entry>row</entry>
- *         <entry>even, odd</entry>
- *         <entry>GTK_STYLE_REGION_ROW</entry>
- *         <entry>#GtkTreeView</entry>
- *       </row>
- *       <row>
- *         <entry>column</entry>
- *         <entry>first, last, sorted</entry>
- *         <entry>GTK_STYLE_REGION_COLUMN</entry>
- *         <entry>#GtkTreeView</entry>
- *       </row>
- *       <row>
- *         <entry>column-header</entry>
- *         <entry></entry>
- *         <entry>GTK_STYLE_REGION_COLUMN_HEADER</entry>
- *         <entry></entry>
- *       </row>
- *       <row>
- *         <entry>tab</entry>
- *         <entry>even, odd, first, last</entry>
- *         <entry>GTK_STYLE_REGION_TAB</entry>
- *         <entry>#GtkNotebook</entry>
- *       </row>
- *     </tbody>
- *   </tgroup>
- * </informaltable>
+ *
+ * ## row
+ * Used by #GtkTreeView. Can be used with the flags: `even`, `odd`.
+ *
+ * ## column
+ * Used by #GtkTreeView. Can be used with the flags: `first`, `last`, `sorted`.
+ *
+ * ## column-header
+ * Used by #GtkTreeView.
+ *
+ * ## tab
+ * Used by #GtkNotebook. Can be used with the flags: `even`, `odd`, `first`, `last`.
  *
  * # Custom styling in UI libraries and applications
  *